home *** CD-ROM | disk | FTP | other *** search
/ The Guided Tour of Multimedia (Second Edition) / The Guided Tour of Multimedia (Second Edition).iso / trials / director / evalcopy / director.z / NAVIGATR.DIR / 00152_Field_152.txt < prev    next >
Text File  |  1994-06-14  |  569b  |  21 lines

  1. Noh_Tale, 48
  2.  
  3. --This handler provides random branching to "NT.Branch" or
  4. --frame "11a" of the current movie. 
  5.  
  6. --random() generates a random number between 1 and 
  7. --the number in the parentheses. In this case, random(2) 
  8. --generates 1 or 2. If the result of random(2) is 2, 
  9. --Director branches to the movie "NT.Branch". Otherwise,
  10. --it plays Scene 11a of the current movie.
  11.  
  12. on exitframe
  13.   global increment, P
  14.   put random(2) into P
  15.  
  16.   set newP = P
  17.   if newP = 2 then play frame "11a"
  18.   if newP = 1 then play frame "11b-1" of movie "NTBranch"
  19. end
  20.  
  21.